- 2025/10/22にRails8.1がリリースされましたね
- Ruby on Rails 8.1 Release Notes — Ruby on Rails Guidesにリリースノートが書かれている
- 上記メジャーフィーチャーに含まれなかったマイナーフィーチャーのうち、気になったものをざっくりまとめています
- 間違いの指摘や、これも追加してくれ〜という物があればコメントお願いします
Discover gists
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Windows Server 2022 Standard key: | |
| HP9DJ-NK2X6-4QPCH-8HY8H-6X2XY | |
| RRNMT-FP29D-CHKCH-GWQP2-DDDVB | |
| 44QN4-X3R72-9X3VK-3DWD6-HFWDM | |
| CGGN9-DG8BW-PMBB4-Y79Y9-Y7X7B | |
| PGQ8Y-WHN93-WY67T-FJXP7-QPHHB | |
| Windows Server 2022 Datacenter Key | |
| N7MMC-VGFH4-GVRDT-K9Q44-X2HJH | |
| MNF6T-BTCTK-Q4HPP-KP2WG-VCHJH |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ---------------------------------------------------------------------------------------------------- | |
| #detect rogue dhcp server | |
| nmap -sU -p67,68 --script dhcp-discover <network_range> | |
| sudo nmap --script broadcast-dhcp-discover | |
| sudo nmap --script broadcast-dhcp-discover -e eth0 | |
| ---------------------------------------------------------------------------------------------------- | |
| Wireshark Output for nmap IP Fragment Scan (Sample): | |
| Filter: ip.flags.mf == 1 | |
| No. Time Source Destination Protocol Length Info |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| bold() { printf "\033[1m%s\033[0m\n" "$*"; } | |
| info() { printf "• %s\n" "$*"; } | |
| warn() { printf "\033[33m! %s\033[0m\n" "$*"; } | |
| err() { printf "\033[31m✗ %s\033[0m\n" "$*" >&2; } | |
| ok() { printf "\033[32m✓ %s\033[0m\n" "$*"; } | |
| require_macos() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Some Jenkinsfile examples |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # PLEASE READ ALL OF THE COMMENTS THROUGHOUT THIS COMMAND GUIDE. THANKS! | |
| # This is a command guide to install OSTree / Bootc on Asahi Fedora. | |
| # Compiled with inspiration from: | |
| # - https://github.com/fedora-asahi-remix-atomic-desktops/images/issues/1 | |
| # - https://github.com/bshephar/fedora-bootc/tree/main/asahi | |
| # Please reset Asahi from scratch as lingering standard install things will bloat. By the | |
| # same logic, install Asahi Minimal when you do reset, as to not bloat your install with |
- 2024/11/07にRails8.0リリースされましたね
- Ruby on Rails 8.0 Release Notes — Ruby on Rails Guides にリリースノートが書かれている
- リリースノートには特にメジャーフィーチャーは書かれていないけど Ruby on Rails — Rails 8.0: No PaaS Required の方に書かれているkamal2やTrusterなどがメジャーフィーチャー扱いっぽい
- 上記のメジャーフィーチャー以外で気になった箇所をざっくりまとめたものです
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "http://json-schema.org/draft-07/schema#", | |
| "title": "Hytale Item Configuration Schema - Fully Documented", | |
| "description": "Complete JSON Schema for Hytale Item asset configuration with comprehensive documentation including full Java package references, field mappings, and enumeration details. All properties are documented with line numbers and source code references.", | |
| "type": "object", | |
| "required": ["Id"], | |
| "additionalProperties": false, | |
| "properties": { | |
| "Id": { | |
| "type": "string", |
This gist was partially inspired by this blog about Next.js Vercel CI with GitHub actions.
An easy way to deploy and host websites for free is to use GitHub pages. If you've deployed a Next.js project to GitHub pages, you may have used a GitHub action similar to this in the past to automatically redeploy the site when a new commit is pushed:
# gh-pages-merge.yml
name: Deploy to gh-pages on merge
on:
push:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Terminal | |
| Build Task | |
| code tunnel -help |
NewerOlder